|
|
@@ -10,14 +10,17 @@ module Agents
|
10
|
10
|
|
11
|
11
|
To be able to use the Aftership API, you need to generate an `API Key`. You do need a paying plan to use their tracking feature.
|
12
|
12
|
|
13
|
|
- You need a key value pair to retrieve data. The key is `get_url`.
|
|
13
|
+ You need a key value pair to retrieve data. The key are `get_url` and `delete_url`.
|
14
|
14
|
|
15
|
15
|
The options are `/trackings/export` to get tracking results for backup purposes, `/trackings/slug/tracking_number` to get tracking
|
16
|
|
- for a single tracking number and `/trackings` to get all of your trackings. You have two options to get courier information, `/couriers`
|
|
16
|
+ for a single tracking number, `/last_checkpoint/:slug/:tracking_number` for last checkpoint of a single tracking and `/trackings` to get all of your trackings.
|
|
17
|
+ You have two options to get courier information, `/couriers`
|
17
|
18
|
which returns the couriers that are activiated at your account and the other is `/couriers/all` which returns all couriers.
|
18
|
19
|
`slug` is a unique courier code which you can get from using this agent.
|
19
|
20
|
|
20
|
|
- The url must be properly formatted with a `/` in front.
|
|
21
|
+ If specified most url must be properly formatted with a `/` in front.
|
|
22
|
+
|
|
23
|
+ The delete option allows you to delete a specific shipment. You must provide `slug` and `tracking number`.
|
21
|
24
|
|
22
|
25
|
Required Options:
|
23
|
26
|
|
|
|
@@ -33,13 +36,19 @@ module Agents
|
33
|
36
|
def default_options
|
34
|
37
|
{ 'api_key' => 'YOUR_API_KEY',
|
35
|
38
|
'Content_Type' => 'application/json',
|
36
|
|
- 'get_url' => '/trackings'
|
|
39
|
+ 'delete_url' => '/trackings',
|
|
40
|
+ 'slug' => '/usps',
|
|
41
|
+ 'tracking_number' => ''
|
37
|
42
|
}
|
38
|
43
|
end
|
39
|
44
|
|
40
|
45
|
def uri
|
41
|
46
|
uri = URI.parse API_URL
|
42
|
|
- uri.query = interpolated['get_url'] if uri.query.nil?
|
|
47
|
+ if options['get_url']
|
|
48
|
+ uri.query = interpolated['get_url'] if uri.query.nil?
|
|
49
|
+ elsif options['delete_url']
|
|
50
|
+ uri.query = interpolated['delete_url'] + interpolated['slug'] + '/' + interpolated['tracking_number'] if uri.query.nil?
|
|
51
|
+ end
|
43
|
52
|
uri.to_s.gsub('?','')
|
44
|
53
|
end
|
45
|
54
|
|
|
|
@@ -50,7 +59,7 @@ module Agents
|
50
|
59
|
def validate_options
|
51
|
60
|
errors.add(:base, "You need to specify a api key") unless options['api_key'].present?
|
52
|
61
|
errors.add(:base, "Content-Type must be set to application/json") unless options['Content_Type'].present? && options['Content_Type'] == 'application/json'
|
53
|
|
- errors.add(:base, "You need to specify a certain request") unless options['get_url'].present?
|
|
62
|
+ #errors.add(:base, "You need to specify a certain request") unless options['get_url'].present? && options['delete_url'].present?
|
54
|
63
|
end
|
55
|
64
|
|
56
|
65
|
def request_options
|
|
|
@@ -61,6 +70,10 @@ module Agents
|
61
|
70
|
response = HTTParty.get(uri, request_options)
|
62
|
71
|
events = JSON.parse response.body
|
63
|
72
|
create_event :payload => events
|
|
73
|
+ if options['delete_url']
|
|
74
|
+ delete = HTTParty.delete(uri, request_options)
|
|
75
|
+ #create_event :payload => delete
|
|
76
|
+ end
|
64
|
77
|
end
|
65
|
78
|
end
|
66
|
79
|
end
|